home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEBodyWriteHTML.au3 < prev    next >
Text File  |  2006-07-14  |  417b  |  9 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the iFrame example, get a reference
  3. ;                to the iFrame with a name of "iFrameTwo" and replace its body HTML
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IE_Example ("iframe")
  8. $oFrame = _IEFrameGetObjByName ($oIE, "iFrameTwo")
  9. _IEBodyWriteHTML ($oFrame, "Hello <b>iFrame!</b>")